/* Recycleinc catalogue — loaded after site.css */
/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--g1) 0%, #0d4a2c 60%, #1a3a2a 100%);
  padding: 52px 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.025);
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.02);
}
.hero-inner { position: relative; max-width: 900px; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 12px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: var(--g5); }
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat .val {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: white;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}
.hero-note {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 240px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.hero-note strong { color: white; display: block; margin-bottom: 6px; font-size: 13px; }

/* ─── STICKY CATEGORY NAV ─── */
.cat-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 72px;
  z-index: 70;
  box-shadow: var(--shadow);
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .15s;
  margin-bottom: -1px;
}
.cat-btn:hover { color: var(--g2); background: var(--g6); }
.cat-btn.active { color: var(--g2); border-bottom-color: var(--g2); }
.cat-btn .cat-icon { font-size: 15px; }
.cat-count {
  background: var(--gray-100);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 10px;
}
.cat-btn.active .cat-count { background: var(--g6); color: var(--g2); }

/* ─── MAIN LAYOUT ─── */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px 80px;
}

/* ─── SECTION ─── */
.section { margin-bottom: 48px; display: none; }
.section.visible { display: block; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.section-icon.metal { background: #fef9c3; }
.section-icon.plastic { background: #dbeafe; }
.section-icon.paper { background: #fef3c7; }
.section-icon.ewaste { background: #ede9fe; }
.section-icon.appliance { background: #ecfdf5; }
.section-icon.organic { background: #fce7f3; }
.section-icon.special { background: #fff7ed; }
.section-icon.vehicle { background: #f1f5f9; }
.section-title h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.02em;
}
.section-title p { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.section-head-right { font-size: 12px; color: var(--text-muted); }

/* ─── PRICE TABLE ─── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.price-table thead th {
  background: var(--gray-50);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table thead th:last-child { text-align: right; }
.price-table thead th:nth-child(3),
.price-table thead th:nth-child(4) { text-align: center; }
.price-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .1s;
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--gray-50); }
.price-table tbody tr.highlight { background: #f0fdf4; }
.price-table tbody tr.highlight:hover { background: #dcfce7; }
.price-table td {
  padding: 13px 16px;
  vertical-align: middle;
}
.item-name {
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text);
}
.item-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.item-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  padding: 1px 7px;
  border-radius: 10px;
}
.tag.hot { background: #fef2f2; color: #be123c; }
.tag.popular { background: var(--g6); color: var(--g1); }
.tag.new { background: #eff6ff; color: #1d4ed8; }
.tag.bulk { background: #fff7ed; color: #b45309; }
.tag.organic { background: #fce7f3; color: #9d174d; }
.tag.compliance { background: #f5f3ff; color: #5b21b6; }
.unit-col {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.trend-col { text-align: center; }
.trend-up { color: #16a34a; font-size: 13px; }
.trend-down { color: #dc2626; font-size: 13px; }
.trend-flat { color: var(--gray-400); font-size: 13px; }
.price-col {
  text-align: right;
  white-space: nowrap;
}
.price-range {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--g1);
}
.price-note {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
  text-align: right;
}
.price-piece {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
}
.price-negotiable {
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
}

/* ─── SPECIAL BOX SECTION ─── */
.box-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.box-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.box-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--g1);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.box-section .subtitle { font-size: 13px; color: var(--g2); }
.box-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.box-card {
  background: white;
  border: 1px solid #d1fae5;
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}
.box-emoji { font-size: 28px; margin-bottom: 8px; display: block; }
.box-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--g1);
  margin-bottom: 4px;
}
.box-who {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}
.box-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--g2);
  background: var(--g6);
  border-radius: 6px;
  padding: 4px 8px;
}

/* ─── INFO CARDS ROW ─── */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-card ul { list-style: none; }
.info-card ul li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--g3); font-size: 11px; }

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: white;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}
.filter-chip:hover { border-color: var(--g3); color: var(--g2); }
.filter-chip.active { background: var(--g2); color: white; border-color: var(--g2); }
.filter-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── UTILITY ─── */
.section-spacer { height: 8px; }
.all-items-show { display: block !important; }
.no-results {
  text-align: center;
  padding: 64px 0;
  color: var(--text-muted);
  display: none;
}
.no-results.visible { display: block; }

/* ─── HERO SEARCH ─── */
.hero-search-wrap {
  margin-top: 28px;
  position: relative;
  max-width: 620px;
}
.hero-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  transition: border-color .2s, box-shadow .2s;
}
.hero-search-bar:focus-within {
  border-color: var(--g4);
  box-shadow: 0 8px 40px rgba(0,0,0,.22), 0 0 0 4px rgba(93,191,138,.18);
}
.hero-search-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--g3);
  transition: transform .2s;
}
.hero-search-bar:focus-within .hero-search-icon { transform: scale(1.1); }
#hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
#hero-search-input::placeholder { color: #adb5bd; font-weight: 300; }
.hero-search-clear {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background .15s;
}
.hero-search-clear:hover { background: var(--gray-200); }
.hero-search-clear.show { display: flex; }
.hero-search-kbd {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── SUGGESTIONS DROPDOWN ─── */
.hero-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  z-index: 200;
  max-height: 380px;
  overflow-y: auto;
}
.hero-suggestions.show { display: block; }
.suggestion-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px 4px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background .1s;
  border-bottom: 1px solid var(--gray-50);
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover, .suggestion-item.active { background: var(--g6); }
.suggestion-emoji { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.suggestion-text { flex: 1; min-width: 0; }
.suggestion-name { font-size: 14px; font-weight: 500; color: var(--text); }
.suggestion-name mark {
  background: #fef08a;
  color: var(--text);
  border-radius: 2px;
  padding: 0 1px;
}
.suggestion-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suggestion-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--g2);
  white-space: nowrap;
}
.suggestion-cat-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── SEARCH RESULTS PANEL ─── */
#search-results-panel {
  display: none;
  margin-bottom: 36px;
}
#search-results-panel.show { display: block; }
.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}
.search-results-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}
.search-results-header h2 em {
  font-style: italic;
  color: var(--g2);
}
.result-count-badge {
  background: var(--g6);
  color: var(--g2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.clear-search-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .15s;
}
.clear-search-btn:hover { border-color: var(--red); color: var(--red); }
.search-results-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.search-results-table thead th {
  background: var(--gray-50);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.search-results-table thead th:last-child { text-align: right; }
.search-results-table thead th:nth-child(2) { text-align: center; }
.search-results-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .1s;
  animation: fadeIn .15s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.search-results-table tbody tr:last-child { border-bottom: none; }
.search-results-table tbody tr:hover { background: var(--gray-50); }
.search-results-table td { padding: 13px 16px; vertical-align: middle; }
.result-cat-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── QUICK PICKS (popular items) ─── */
.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.quick-pick-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 14px;
  display: block;
}
.quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.quick-chip:hover {
  background: rgba(255,255,255,.2);
  color: white;
  border-color: rgba(255,255,255,.4);
}
.quick-chip .chip-emoji { font-size: 13px; }

@media print {
  .topbar, .header, .cat-nav, .filter-bar { display: none; }
  .section { display: block !important; }
  .hero { padding: 24px; }
  .main { padding: 24px; }
}

.cat-nav { top: 72px; }
body.page-prices .hero { margin: 0; }
@media (max-width: 900px) {
  .hero-note { display: none; }
  .hero { padding: 36px 20px 28px; }
  .cat-nav { padding: 0 12px; }
  .main { padding: 24px 16px 64px; }
  .box-grid { grid-template-columns: 1fr 1fr; }
  .info-row { grid-template-columns: 1fr; }
}
