.nucom-inventory-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.nucom-inventory-wrap h2 {
    margin-bottom: 24px;
    font-size: 30px;
    letter-spacing: 1px;
    color: #333;
}

.nucom-inventory-filters {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    align-items: end;
    padding: 18px;
    background: #f7f9fb;
    border: 1px solid #e2e7ec;
    border-radius: 10px;
}

.nucom-inventory-filters label {
    font-weight: 600;
    font-size: 13px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 7px;
    letter-spacing: .4px;
}

.nucom-inventory-filters select,
.nucom-inventory-filters input {
    padding: 11px 12px;
    min-width: 220px;
    border: 1px solid #cfd8e3;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}

.nucom-inventory-filters input:focus,
.nucom-inventory-filters select:focus {
    outline: none;
    border-color: #4aa3d8;
    box-shadow: 0 0 0 3px rgba(74,163,216,.18);
}

/* ===========================
   TABLE
=========================== */

.nucom-inventory-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d8dde3;
    border-radius: 10px;
    overflow: hidden;
}

.nucom-inventory-table th {
    background: #1f1f1f;
    color: #fff;
    text-align: left;
    padding: 13px 14px;
    font-size: 13px;
    letter-spacing: .3px;
}

.nucom-inventory-table td {
    border-bottom: 1px solid #e5e8ec;
    padding: 13px 14px;
    font-size: 14px;
    color: #4b5563;
}

.nucom-inventory-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* ===========================
   CLICKABLE ROWS
=========================== */

.nucom-product-row {
    cursor: pointer;
    transition: background-color .18s ease;
}

.nucom-product-row td {
    transition: all .18s ease;
    border-left: 4px solid transparent;
}

.nucom-product-row:hover {
    background: #f2f8fc !important;
}

.nucom-product-row:hover td:first-child {
    border-left-color: #0078d4;
    color: #111;
}

.nucom-product-row td:nth-child(2)::after {
    content: " ›";
    font-weight: bold;
    color: #0078d4;
    float: right;
}

/* ===========================
   BUTTON
=========================== */

.nucom-quote-button {
    margin-top: 18px;
    padding: 11px 18px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s ease;
}

.nucom-quote-button:hover {
    background: #333;
}

/* ===========================
   SLIDE OUT DRAWER
=========================== */

.nucom-product-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 92%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0,0,0,.18);
    z-index: 99999;
    transition: right .25s ease;
    padding: 24px;
    box-sizing: border-box;
}

.nucom-product-drawer.open {
    right: 0;
}

.nucom-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 99998;
}

.nucom-drawer-overlay.open {
    display: block;
}

.nucom-drawer-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    color: #222;
}

.nucom-drawer-content {
    margin-top: 42px;
}

.nucom-drawer-image-placeholder {
    height: 220px;
    background: #f1f4f7;
    border: 2px dashed #c8d0d8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    margin-bottom: 22px;
}
.nucom-drawer-image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nucom-drawer-content h2 {
    margin: 0 0 18px;
    font-size: 24px;
    color: #222;
}

.nucom-drawer-info {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.nucom-drawer-info div {
    padding: 14px;
    border: 1px solid #e1e6eb;
    border-radius: 8px;
    background: #f8fafc;
}

.nucom-drawer-info span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #667085;
    margin-bottom: 4px;
}

.nucom-drawer-info strong {
    font-size: 18px;
    color: #111;
}



/* ===========================
   MOBILE
=========================== */

@media (max-width:768px) {

    .nucom-inventory-wrap {
        padding: 18px;
    }

    .nucom-inventory-filters {
        display: block;
    }

    .nucom-inventory-filters label {
        margin-bottom: 14px;
    }

    .nucom-inventory-filters select,
    .nucom-inventory-filters input {
        width: 100%;
        min-width: 0;
    }

    .nucom-inventory-table {
        display: block;
        overflow-x: auto;
    }

    .nucom-product-drawer {
        width: 100%;
        max-width: 100%;
    }
}