/* NadPoint Shop / Category / Search grid */
.ndp-shop-page {
    --ndp-primary: #c59b27; --ndp-primary-dark: #a07820; --ndp-text: #1b3022; --ndp-muted: #6b7280; --ndp-border: #e5e7eb;
    max-width: 1320px; margin: 30px auto 60px; padding: 0 20px;
}
.ndp-breadcrumb { font-size: 0.82rem; color: var(--ndp-muted); margin-bottom: 8px; }
.ndp-breadcrumb a { color: var(--ndp-muted); text-decoration: none; }
.ndp-breadcrumb a:hover { color: var(--ndp-primary); }
.ndp-breadcrumb span { margin: 0 6px; }
.ndp-breadcrumb .is-current { color: var(--ndp-text); font-weight: 600; }

.ndp-shop-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.ndp-shop-heading-row h1 { margin: 0 0 4px; font-size: 1.7rem; color: var(--ndp-text); }
.ndp-shop-subheading { color: var(--ndp-muted); font-size: 0.88rem; margin: 0 0 4px; max-width: 60ch; }
.ndp-shop-result-count { color: var(--ndp-muted); font-size: 0.82rem; margin: 0; }
.ndp-shop-filter-toggle { display: none; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--ndp-border); border-radius: 9px; padding: 9px 16px; font-weight: 700; font-size: 0.84rem; cursor: pointer; color: var(--ndp-text); }

.ndp-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 26px; align-items: start; }
@media (max-width: 900px) {
    .ndp-shop-layout { grid-template-columns: 1fr; }
    .ndp-shop-filter-toggle { display: inline-flex; }
    .ndp-shop-sidebar { display: none; position: fixed; inset: 0; z-index: 9999; background: #fff; overflow-y: auto; padding: 20px; }
    .ndp-shop-sidebar.is-open { display: block; }
}

.ndp-shop-sidebar { background: #fff; border: 1px solid var(--ndp-border); border-radius: 14px; padding: 18px; position: sticky; top: 20px; }
.ndp-shop-filter-block { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f3f4f6; }
.ndp-shop-filter-block:last-of-type { border-bottom: none; margin-bottom: 12px; }
.ndp-shop-filter-block h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ndp-text); margin: 0 0 12px; }

.ndp-shop-search-box { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--ndp-border); border-radius: 9px; padding: 8px 12px; }
.ndp-shop-search-box i { color: #9ca3af; font-size: 0.82rem; }
.ndp-shop-search-box input { border: none; outline: none; flex: 1; font-size: 0.86rem; }

.ndp-shop-filter-list { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
.ndp-shop-filter-list li { margin-bottom: 8px; }
.ndp-shop-filter-list label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #374151; cursor: pointer; }
.ndp-shop-filter-list label span { color: var(--ndp-muted); font-size: 0.76rem; margin-left: auto; }
.ndp-shop-filter-list input { accent-color: var(--ndp-primary); }

.ndp-shop-price-range { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ndp-shop-price-range input { width: 0; flex: 1; padding: 8px 10px; border: 1.5px solid var(--ndp-border); border-radius: 8px; font-size: 0.82rem; }
.ndp-shop-price-range span { color: var(--ndp-muted); }
.ndp-shop-price-apply { width: 100%; padding: 8px; border: 1.5px solid var(--ndp-border); border-radius: 8px; background: #fff; font-weight: 700; font-size: 0.8rem; cursor: pointer; color: var(--ndp-text); }
.ndp-shop-price-apply:hover { border-color: var(--ndp-primary); color: var(--ndp-primary-dark); }

.ndp-shop-clear-filters { width: 100%; padding: 9px; border: none; border-radius: 8px; background: #fef2f2; color: #dc2626; font-weight: 700; font-size: 0.8rem; cursor: pointer; }

.ndp-shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.ndp-shop-toolbar-count { font-size: 0.84rem; color: var(--ndp-muted); }
.ndp-shop-toolbar select { padding: 9px 14px; border: 1.5px solid var(--ndp-border); border-radius: 9px; font-size: 0.84rem; background: #fff; color: var(--ndp-text); }

#ndp-shop-grid { transition: opacity 0.2s; min-height: 200px; }
.ndp-shop-empty { text-align: center; padding: 70px 20px; color: var(--ndp-muted); grid-column: 1 / -1; }
.ndp-shop-empty i { font-size: 3rem; color: #d1d5db; margin-bottom: 12px; }
.ndp-shop-empty h3 { color: var(--ndp-text); margin: 0 0 6px; }

.ndp-shop-load-more { display: block; margin: 26px auto 0; padding: 12px 32px; border: 1.5px solid var(--ndp-border); border-radius: 10px; background: #fff; font-weight: 700; font-size: 0.88rem; cursor: pointer; color: var(--ndp-text); }
.ndp-shop-load-more:hover { border-color: var(--ndp-primary); color: var(--ndp-primary-dark); }
