.px-page { background: #f5f5f5; min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.px-wrap { max-width: 1400px; margin: 0 auto; padding: 20px 24px; }
body.ez-has-sidebar .px-wrap { max-width: 100%; }

/* Hero */
.px-hero { position: relative; background: linear-gradient(135deg, #001529 0%, #003a8c 100%); overflow: hidden; }
.px-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px 300px at 20% 30%, rgba(22,119,255,.3) 0%, transparent 60%); pointer-events: none; }
.px-hero-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 48px 24px 40px; }
.px-hero h1 { font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.px-hero p { font-size: 15px; color: rgba(255,255,255,.7); margin: 0; }
.px-hero-badges { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.px-hero-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); border-radius: 20px; font-size: 12px; font-weight: 500; padding: 4px 12px; }

/* Toolbar (sidebar mode) */
.px-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.px-toolbar-title { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.px-toolbar-sub { font-size: 12px; color: #8c8c8c; }
.px-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.px-badge { display: inline-flex; align-items: center; gap: 4px; background: #e6f4ff; color: #1677ff; border: 1px solid #91caff; border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; }

/* Filter */
.px-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.px-filter-btn { height: 32px; padding: 0 14px; border: 1px solid #d9d9d9; border-radius: 20px; background: #fff; font-size: 13px; color: #595959; cursor: pointer; transition: all .2s; }
.px-filter-btn:hover, .px-filter-btn.active { border-color: #1677ff; color: #1677ff; background: #e6f4ff; }

/* Grid */
.px-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.px-card { background: #fff; border-radius: 8px; border: 1px solid #f0f0f0; display: flex; flex-direction: column; transition: all .2s; overflow: hidden; }
.px-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #d9d9d9; transform: translateY(-2px); }
.px-card-head { padding: 18px 16px 14px; border-bottom: 1px solid #f5f5f5; text-align: center; position: relative; }
.px-card-type { display: inline-flex; align-items: center; gap: 4px; background: #e6f4ff; color: #1677ff; border: 1px solid #91caff; border-radius: 4px; font-size: 10px; font-weight: 700; padding: 2px 8px; position: absolute; top: 12px; right: 12px; }
.px-card-loc { font-size: 11px; color: #8c8c8c; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.px-card-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.px-card-price { font-size: 24px; font-weight: 800; color: #1677ff; }
.px-card-unit { font-size: 12px; color: #8c8c8c; font-weight: 500; }
.px-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.px-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #333; }
.px-feat i { color: #1677ff; font-size: 15px; width: 16px; flex-shrink: 0; }
.px-card-foot { padding: 0 16px 16px; }
.px-buy { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; height: 38px; border: none; border-radius: 6px; background: #1677ff; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; text-decoration: none; }
.px-buy:hover { background: #0958d9; }
.px-empty { text-align: center; padding: 60px 20px; color: #8c8c8c; grid-column: 1/-1; }

@media (max-width: 768px) {
    .px-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

