/* /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 */
    border-radius: 12px;
}

@media (max-width: 900px) {
    aside[b-4zd3hqnyxo] {
        top: 5.5rem;
        padding: 0.75rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #e0e4ec;
        background: #ffffff;
    }
}

/* 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;
}


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

.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/ChatWidget.razor.rz.scp.css */
.chat-container[b-y1l30rx3ap] { position: fixed; bottom: 20px; right: 20px; width: 300px; z-index: 10001; font-family: sans-serif; transition: all 0.3s ease; }
.chat-container.bubble-mode[b-y1l30rx3ap] {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    background: none;
    box-shadow: none;
    right: auto;
    left: 90px; /* next to NavCart, adjust as needed */
    bottom: 30px;
    z-index: 10001;
    display: flex;
    align-items: flex-end;
}

.chat-bubble[b-y1l30rx3ap] {
    width: 56px;
    height: 56px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.2s, background 0.2s;
}
.chat-bubble:hover[b-y1l30rx3ap] {
    background: #0056b3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.bubble-icon[b-y1l30rx3ap] {
    font-size: 1.7rem;
    color: #fff;
}
.chat-bubble .badge[b-y1l30rx3ap] {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
}
.chat-header[b-y1l30rx3ap] { background: #007bff; color: white; padding: 10px; cursor: pointer; border-radius: 8px 8px 0 0; display: flex; justify-content: space-between; }
.chat-body[b-y1l30rx3ap] { height: 350px; background: #f8f9fa; border: 1px solid #ddd; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; }
.message[b-y1l30rx3ap] { margin-bottom: 10px; max-width: 80%; padding: 8px; border-radius: 8px; }
.message.user[b-y1l30rx3ap] { align-self: flex-end; background: #007bff; color: white; }
.message.admin[b-y1l30rx3ap] { align-self: flex-start; background: #e9ecef; color: #333; }
.chat-footer[b-y1l30rx3ap] { display: flex; border: 1px solid #ddd; border-top: none; }
.chat-footer input[b-y1l30rx3ap] { flex: 1; border: none; padding: 10px; outline: none; }
.chat-footer button[b-y1l30rx3ap] { background: #007bff; color: white; border: none; padding: 0 15px; cursor: pointer; }
.badge[b-y1l30rx3ap] { background: red; border-radius: 50%; padding: 2px 6px; font-size: 10px; }
.closed .chat-body[b-y1l30rx3ap], .closed .chat-footer[b-y1l30rx3ap] { display: none; }

/* Move chat to left side on desktop, next to NavCart */
.chat-container[b-y1l30rx3ap] {
    left: 90px; /* adjust to match NavCart position */
    right: auto;
}

@media (max-width: 768px) {
    .chat-container[b-y1l30rx3ap] {
        left: 16px;
        right: auto;
        width: 100%;
        max-width: 100vw;
    }
    .chat-container.bubble-mode[b-y1l30rx3ap] {
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width: 768px) {
    .chat-container[b-y1l30rx3ap] {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
    }
    .chat-header[b-y1l30rx3ap] {
        border-radius: 0;
    }
}
/* /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/CvaImage/CvaImage.razor.rz.scp.css */
button[b-kp6tn52byj]{
    margin-top: 5rem;
}
/* /Components/GlobalModals/CreateSimilar.razor.rz.scp.css */
.create-similar-overlay[b-xzmyr3krp6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
    pointer-events: auto;
    transform: none !important;
}

.create-similar-content[b-xzmyr3krp6] {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    pointer-events: auto;
    transform: none !important;
}

.modal-header[b-xzmyr3krp6] {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.modal-header h3[b-xzmyr3krp6] {
    margin: 0;
    font-weight: 300;
    color: #333;
}

.form-grid[b-xzmyr3krp6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group[b-xzmyr3krp6] {
    display: flex;
    flex-direction: column;
}

.form-group.full-width[b-xzmyr3krp6] {
    grid-column: span 2;
}

.form-group label[b-xzmyr3krp6] {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.4rem;
}

.form-group input[b-xzmyr3krp6], .form-group textarea[b-xzmyr3krp6], .form-group select[b-xzmyr3krp6] {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.form-group input:focus[b-xzmyr3krp6] {
    outline: none;
    border-color: #007bff;
}

.modal-footer[b-xzmyr3krp6] {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn[b-xzmyr3krp6] {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-primary[b-xzmyr3krp6] {
    background: #333;
    color: white;
}

.btn-primary:hover[b-xzmyr3krp6] {
    background: #000;
}

.btn-secondary[b-xzmyr3krp6] {
    background: #eee;
    color: #666;
}

.btn-secondary:hover[b-xzmyr3krp6] {
    background: #ddd;
}
/* /Components/Kits/KitBuilder.razor.rz.scp.css */
.kit-builder-shell[b-d650nsalh4] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.kit-builder-header[b-d650nsalh4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kit-builder-header h1[b-d650nsalh4] {
    margin: 0 0 0.5rem;
    font-size: 1.9rem;
    color: #0f172a;
}

.kit-builder-header p[b-d650nsalh4] {
    margin: 0;
    color: #475569;
    max-width: 60rem;
}

.back-link[b-d650nsalh4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.kit-builder-grid[b-d650nsalh4] {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 1.5rem;
}

.editor-card[b-d650nsalh4],
.items-card[b-d650nsalh4],
.state-card[b-d650nsalh4] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.editor-card[b-d650nsalh4],
.items-card[b-d650nsalh4] {
    padding: 1.25rem;
}

.state-card[b-d650nsalh4] {
    padding: 1rem 1.25rem;
}

.state-card.error[b-d650nsalh4],
.status[b-d650nsalh4] {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
}

.state-card.error[b-d650nsalh4] {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.status.success[b-d650nsalh4] {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.field-label[b-d650nsalh4] {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #334155;
}

.field-input[b-d650nsalh4] {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row[b-d650nsalh4] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.summary-row:last-of-type[b-d650nsalh4] {
    margin-bottom: 1rem;
}

.checkbox-row[b-d650nsalh4] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: #334155;
    font-weight: 600;
}

.checkbox-row input[b-d650nsalh4] {
    width: 1rem;
    height: 1rem;
}

.primary-btn[b-d650nsalh4],
.remove-btn[b-d650nsalh4] {
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.primary-btn[b-d650nsalh4] {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #0f766e;
    color: #fff;
}

.primary-btn:disabled[b-d650nsalh4],
.remove-btn:disabled[b-d650nsalh4] {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.items-header h2[b-d650nsalh4],
.editor-card h2[b-d650nsalh4] {
    margin: 0;
    color: #0f172a;
}

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

.item-row[b-d650nsalh4] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fafc;
}

.item-title[b-d650nsalh4] {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.item-meta[b-d650nsalh4],
.items-header span[b-d650nsalh4],
.item-price[b-d650nsalh4],
.empty-state[b-d650nsalh4] {
    color: #64748b;
}

.item-actions[b-d650nsalh4] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.remove-btn[b-d650nsalh4] {
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
}

.empty-state[b-d650nsalh4] {
    padding: 1rem;
    border-radius: 14px;
    background: #f8fafc;
}

@media (max-width: 840px) {
    .kit-builder-grid[b-d650nsalh4] {
        grid-template-columns: 1fr;
    }

    .kit-builder-header[b-d650nsalh4] {
        flex-direction: column;
    }

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

    .item-actions[b-d650nsalh4] {
        width: 100%;
        align-items: stretch;
    }
}
/* /Components/Kits/KitDetail.razor.rz.scp.css */
.kit-detail-shell[b-2r0odizr3l] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.kit-detail-header[b-2r0odizr3l] {
    margin-bottom: 1.5rem;
}

.kit-detail-header h1[b-2r0odizr3l] {
    margin: 0.75rem 0 0;
    font-size: 1.9rem;
    color: #0f172a;
}

.kit-detail-grid[b-2r0odizr3l] {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 1.5rem;
}

.editor-card[b-2r0odizr3l],
.items-card[b-2r0odizr3l],
.state-card[b-2r0odizr3l] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.editor-card[b-2r0odizr3l],
.items-card[b-2r0odizr3l] {
    padding: 1.25rem;
}

.state-card[b-2r0odizr3l] {
    padding: 1rem 1.25rem;
}

.state-card.error[b-2r0odizr3l],
.status[b-2r0odizr3l] {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
}

.state-card.error[b-2r0odizr3l] {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.status.success[b-2r0odizr3l] {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.back-link[b-2r0odizr3l] {
    color: #0f766e;
    text-decoration: none;
    font-weight: 700;
}

.field-label[b-2r0odizr3l] {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #334155;
}

.field-input[b-2r0odizr3l] {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row[b-2r0odizr3l] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.summary-row:last-of-type[b-2r0odizr3l] {
    margin-bottom: 1rem;
}

.primary-btn[b-2r0odizr3l] {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 12px;
    background: #0f766e;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.primary-btn:disabled[b-2r0odizr3l] {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.items-header h2[b-2r0odizr3l],
.editor-card h2[b-2r0odizr3l] {
    margin: 0;
    color: #0f172a;
}

.items-list[b-2r0odizr3l] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.item-row[b-2r0odizr3l] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fafc;
}

.item-title[b-2r0odizr3l] {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

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

.item-link:hover .item-title[b-2r0odizr3l] {
    text-decoration: underline;
    text-decoration-color: #0f766e;
}

.item-meta[b-2r0odizr3l],
.items-header span[b-2r0odizr3l],
.empty-state[b-2r0odizr3l] {
    color: #64748b;
}

.remove-btn[b-2r0odizr3l] {
    padding: 0.55rem 0.8rem;
    border: none;
    border-radius: 10px;
    background: #fee2e2;
    color: #991b1b;
    cursor: pointer;
    font-weight: 700;
}

.remove-btn:disabled[b-2r0odizr3l] {
    opacity: 0.6;
    cursor: not-allowed;
}

.empty-state[b-2r0odizr3l] {
    padding: 1rem;
    border-radius: 14px;
    background: #f8fafc;
}

@media (max-width: 840px) {
    .kit-detail-grid[b-2r0odizr3l] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Labor/CreateLabor.razor.rz.scp.css */

.create-labor-form[b-jc3dbusq58] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 420px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.create-labor-form h3[b-jc3dbusq58] {
    margin-bottom: 0.5rem;
    text-align: center;
}

.create-labor-form form[b-jc3dbusq58] {
    display: grid;
    gap: 1rem;
}

.create-labor-form div[b-jc3dbusq58] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.create-labor-form label[b-jc3dbusq58] {
    font-weight: 600;
}

.create-labor-form .form-control[b-jc3dbusq58] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.create-labor-form .btn[b-jc3dbusq58] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.success-message[b-jc3dbusq58] {
    color: green;
    margin-top: 1rem;
    text-align: center;
}

.error-message[b-jc3dbusq58] {
    color: red;
    margin-top: 1rem;
    text-align: center;
}
/* /Components/Labor/LaborList.razor.rz.scp.css */
.labor-list-container[b-kbqtk5uy48] {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.labor-list-grid[b-kbqtk5uy48] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.labor-card[b-kbqtk5uy48] {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 1.2rem;
    align-items: flex-start;
}

.labor-title[b-kbqtk5uy48] {
    font-size: 1.2rem;
    font-weight: 600;
}

.labor-price[b-kbqtk5uy48] {
    font-size: 1.1rem;
    color: #2a7d2e;
    font-weight: 500;
}

.labor-codes[b-kbqtk5uy48] {
    font-size: 0.95rem;
    color: #888;
}

.add-to-cart-btn[b-kbqtk5uy48] {
    margin-top: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.add-to-cart-btn:hover[b-kbqtk5uy48] {
    background: #0056b3;
}
.success-message[b-kbqtk5uy48] {
    color: green;
    text-align: center;
    margin-top: 1rem;
}
.error-message[b-kbqtk5uy48] {
    color: red;
    text-align: center;
    margin-top: 1rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

















/* MainLayout styles */


.layout[b-oh725ac5rm] {
  display: grid;
  grid-template-columns: minmax(200px, 250px) 1fr;
  min-height: 100vh;
  background: #f3f5f9;
  width: 100%;
  max-width: 1440px;
  margin: 64px auto 0; /* Space for the fixed Nav */
  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: 0.5rem;
    padding: 0.5rem;
    margin: 80px auto 0; /* Standard mobile spacing */
  }
  aside[b-oh725ac5rm] {
    padding: 0.5rem;
    background: transparent;
    box-shadow: none;
  }
  main[b-oh725ac5rm] {
    padding: 0.5rem;
  }
}

/* Extra space for the double-row Nav on very small screens */
@media (max-width: 650px) {
  .layout[b-oh725ac5rm] {
    margin: 110px auto 0;
  }
}





/* 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.35rem;
        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-item .item-price[b-7wgzzun9c0] {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    letter-spacing: -0.01em;
    text-shadow: none;
    background: transparent;
    border: none;
    display: inline-block;
    padding: 0;
    margin: 0;
}
.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;
}

.item-name a[b-7wgzzun9c0] {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.item-name a:hover[b-7wgzzun9c0] {
    text-decoration: underline;
    text-decoration-color: #3498db;
    text-underline-offset: 3px;
}

/* 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; }

.qty-display[b-7wgzzun9c0] {
    width: 32px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 0;
    margin: 0;
    appearance: textfield;
    -moz-appearance: textfield;
}

.qty-display[b-7wgzzun9c0]::-webkit-outer-spin-button,
.qty-display[b-7wgzzun9c0]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.item-price[b-7wgzzun9c0] {
    grid-area: price;
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
    text-align: right;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    text-shadow: none;
}

.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);
}

.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; }



/* 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;
    }
}
.address-selection-grid[b-7wgzzun9c0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.address-card[b-7wgzzun9c0] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}

.address-card:hover[b-7wgzzun9c0] {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.address-card.selected[b-7wgzzun9c0] {
    border-color: #2563eb;
    background: #f0f7ff;
}

.card-radio[b-7wgzzun9c0] {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
}

.address-card.selected .card-radio[b-7wgzzun9c0] {
    border-color: #2563eb;
}

.address-card.selected .card-radio[b-7wgzzun9c0]::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
}

.card-content strong[b-7wgzzun9c0] {
    display: block;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.card-content p[b-7wgzzun9c0] {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.phone-label[b-7wgzzun9c0] {
    margin-top: 0.5rem !important;
    font-weight: 500;
}

.add-new-card[b-7wgzzun9c0] {
    border: 2px dashed #cbd5e1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #64748b;
    text-align: center;
}

.add-new-card:hover[b-7wgzzun9c0] {
    border-style: solid;
    border-color: #2563eb;
    color: #2563eb;
}

.plus-icon[b-7wgzzun9c0] {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

/* Shipping Preview in Review Step */
.shipping-preview[b-7wgzzun9c0] {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.preview-header[b-7wgzzun9c0] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.preview-header .icon[b-7wgzzun9c0] {
    font-size: 1.25rem;
}

.preview-header p[b-7wgzzun9c0] {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

.header-with-action[b-7wgzzun9c0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-text-only[b-7wgzzun9c0] {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
}

.btn-text-only:hover[b-7wgzzun9c0] {
    text-decoration: underline;
}
/* /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;
    position: relative; /* Ensure it respects z-index properly */
}

@media (max-width: 768px) {
    .cart-modal-footer[b-se6kgbj0ou] {
        padding-bottom: 60px; /* Space for the chat bar on mobile */
    }
}

@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-link[b-se6kgbj0ou] {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.cart-item-link:hover[b-se6kgbj0ou] {
    text-decoration: underline;
    text-decoration-color: #3498db;
    text-underline-offset: 2px;
}

.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-form[b-94nrpx50pn] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.search-container[b-94nrpx50pn] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.input-group[b-94nrpx50pn] {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 48px;
}

.input-group:focus-within[b-94nrpx50pn] {
    background: #ffffff;
    border-color: var(--cm, #006dff);
    box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.1);
    transform: translateY(-1px);
}

.icon-container[b-94nrpx50pn] {
    padding: 0 12px 0 16px;
    display: flex;
    align-items: center;
    color: #64748b;
}

.search-icon[b-94nrpx50pn] {
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.input-group:focus-within .search-icon[b-94nrpx50pn] {
    color: var(--cm, #006dff);
}

.search-input[b-94nrpx50pn] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 16px 0 0;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.search-input[b-94nrpx50pn]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Remove default "x" in search inputs */
.search-input[b-94nrpx50pn]::-webkit-search-decoration,
.search-input[b-94nrpx50pn]::-webkit-search-cancel-button,
.search-input[b-94nrpx50pn]::-webkit-search-results-button,
.search-input[b-94nrpx50pn]::-webkit-search-results-decoration {
    display: none;
}


/* Mobile Adjustments */
@media (max-width: 640px) {
    .search-container[b-94nrpx50pn] {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    


    .input-group[b-94nrpx50pn] {
        height: 44px;
    }

    .search-input[b-94nrpx50pn] {
        font-size: 16px; /* Important for iOS to prevent zoom */
    }
}
/* /Components/OpenPay/ReturnOpenPay.razor.rz.scp.css */
.return-container[b-zkin8aogrd] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
}

.return-card[b-zkin8aogrd] {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.spinner[b-zkin8aogrd] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-zkin8aogrd 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-zkin8aogrd {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-success[b-zkin8aogrd] {
    color: #28a745;
    font-size: 64px;
    margin-bottom: 20px;
}

.icon-error[b-zkin8aogrd] {
    color: #dc3545;
    font-size: 64px;
    margin-bottom: 20px;
}

.success-title[b-zkin8aogrd] {
    color: #212529;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.order-info[b-zkin8aogrd] {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 25px;
}

.next-step[b-zkin8aogrd] {
    font-weight: 600;
    margin-bottom: 20px;
    color: #495057;
}

.error-title[b-zkin8aogrd] {
    color: #212529;
    font-size: 24px;
    margin-bottom: 15px;
}

.error-msg[b-zkin8aogrd] {
    color: #dc3545;
    background: #fff5f5;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.actions[b-zkin8aogrd] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn[b-zkin8aogrd] {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary-custom[b-zkin8aogrd] {
    background-color: #007bff;
    color: white;
}

.btn-primary-custom:hover[b-zkin8aogrd] {
    background-color: #0069d9;
    color: white;
}

.btn-outline-custom[b-zkin8aogrd] {
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.btn-outline-custom:hover[b-zkin8aogrd] {
    background-color: #f8f9fa;
    color: #495057;
}

.btn-danger-custom[b-zkin8aogrd] {
    background-color: #dc3545;
    color: white;
}

.btn-danger-custom:hover[b-zkin8aogrd] {
    background-color: #c82333;
    color: white;
}
/* /Components/Pages/Admin/Chat/AdminChat.razor.rz.scp.css */
.admin-chat-container[b-aoj5d2cs3p] {
    display: flex;
    height: calc(100vh - 100px);
    border: 1px solid #ddd;
    margin: 20px;
    background: white;
}

.chat-sidebar[b-aoj5d2cs3p] {
    width: 250px;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-sidebar h3[b-aoj5d2cs3p] {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1rem;
}

.chat-sidebar ul[b-aoj5d2cs3p] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chat-sidebar li[b-aoj5d2cs3p] {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.chat-sidebar li:hover[b-aoj5d2cs3p] { background: #e9ecef; }
.chat-sidebar li.active[b-aoj5d2cs3p] { background: #007bff; color: white; }

.chat-main[b-aoj5d2cs3p] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-header[b-aoj5d2cs3p] {
    padding: 15px;
    background: #eee;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.chat-messages[b-aoj5d2cs3p] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.message[b-aoj5d2cs3p] {
    margin-bottom: 15px;
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
}

.message.user[b-aoj5d2cs3p] {
    align-self: flex-start !important;
    background: #e9ecef !important;
    color: #000000 !important;
    border: 1px solid #ccc !important;
}

.message.admin[b-aoj5d2cs3p] {
    align-self: flex-end !important;
    background: #007bff !important;
    color: #ffffff !important;
}

.chat-input[b-aoj5d2cs3p] {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
}

.chat-input input[b-aoj5d2cs3p] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.chat-input button[b-aoj5d2cs3p] {
    margin-left: 10px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.no-selection[b-aoj5d2cs3p] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}
/* /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: grid;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    justify-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

.main-gallery-image[b-3qgks9j35p] {
    width: 100%;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-thumbnails[b-3qgks9j35p] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.thumbnail[b-3qgks9j35p] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s;
}
.thumbnail.active[b-3qgks9j35p] {
    border: 2px solid #007bff;
}

@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;
}

.modal-overlay[b-3qgks9j35p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.72);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 20000;
}

.modal-content[b-3qgks9j35p] {
    position: relative;
    width: min(100%, 1080px);
    max-height: 90vh;
    background: #ffffff;
    border-radius: 18px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    grid-template-rows: 56px 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    overflow: hidden;
    touch-action: none;
}

.modal-close[b-3qgks9j35p] {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 2;
}

.modal-prev[b-3qgks9j35p],
.modal-next[b-3qgks9j35p] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 2;
}

.modal-prev[b-3qgks9j35p] {
    grid-column: 1;
    grid-row: 2;
}

.modal-next[b-3qgks9j35p] {
    grid-column: 3;
    grid-row: 2;
}

.modal-image[b-3qgks9j35p] {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    touch-action: none;
}

.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;
    }
    .modal-content[b-3qgks9j35p] {
        grid-template-columns: 1fr;
        grid-template-rows: 44px 1fr;
        padding: 0.5rem;
    }
    .modal-close[b-3qgks9j35p] {
        font-size: 1.5rem;
    }
    .modal-prev[b-3qgks9j35p],
    .modal-next[b-3qgks9j35p] {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.28);
    }
    .modal-prev[b-3qgks9j35p] {
        left: 8px;
        grid-column: 1;
        grid-row: 2;
    }
    .modal-next[b-3qgks9j35p] {
        right: 8px;
        grid-column: 1;
        grid-row: 2;
    }
    .modal-image[b-3qgks9j35p] {
        max-height: 86vh;
        width: 100%;
    }
}

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

.staff-internal-section[b-3qgks9j35p] {
    margin-top: 1.75rem;
    padding: 1.25rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.staff-grid[b-3qgks9j35p] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.staff-item label[b-3qgks9j35p] {
    display: block;
    color: #475569;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.staff-item .value[b-3qgks9j35p] {
    font-size: 1rem;
    color: #111827;
    line-height: 1.5;
}

.staff-actions[b-3qgks9j35p] {
    display: flex;
    justify-content: flex-start;
}

.staff-message[b-3qgks9j35p] {
    margin-top: 0.85rem;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.staff-action-button[b-3qgks9j35p] {
    border: none;
    background: #111827;
    color: #ffffff;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.staff-action-button:hover[b-3qgks9j35p] {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

@media (max-width: 768px) {
    .staff-grid[b-3qgks9j35p] {
        grid-template-columns: 1fr;
    }
}


.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: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-intro[b-578p7jl1gq] {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features[b-578p7jl1gq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature[b-578p7jl1gq] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature .emoji[b-578p7jl1gq] {
    font-size: 1.25rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.feature p[b-578p7jl1gq] {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

.feature strong[b-578p7jl1gq] {
    color: #334155;
    display: block;
}

@media (max-width: 650px) {
    .hero-features[b-578p7jl1gq] {
        grid-template-columns: 1fr;
    }
}

/* 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; - DISABLED to prevent flashing issues with modals */
}

.title-link[b-apew41z3hw] {
    text-decoration: none;
    color: inherit;
    /* transition: all 0.2s ease; - DISABLED for stability */
}

.title-link:hover[b-apew41z3hw] {
    text-decoration: underline !important;
    text-decoration-color: #3498db !important;
    text-underline-offset: 3px;
}

.product-card:hover[b-apew41z3hw] {
    /* transform: translateY(-4px); - REMOVED: main cause of modal flashing */
    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;
    transition: all 0.2s ease;
}

.sale-item-link:hover .item-name[b-p349f3kqv7] {
    text-decoration: underline;
    text-decoration-color: #3498db;
    text-underline-offset: 3px;
}

.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-remove-btn[b-p349f3kqv7] {
    margin-top: 0.75rem;
    padding: 0.45rem 0.9rem;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.sale-remove-btn:hover[b-p349f3kqv7] {
    background: #fecaca;
    transform: translateY(-1px);
}

.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;
    }
}
