/* ═══ Rev-A-Shelf Product Finder ═══ */
.ras-finder {
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}
.ras-finder-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #002868;
  margin-bottom: 0.75rem;
}
.ras-finder-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ras-finder-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.ras-finder-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  padding: 6px 8px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.ras-finder-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  white-space: nowrap;
}
.ras-finder-table tr:hover td {
  background: #f8fafc;
}
.ras-sku {
  font-family: monospace;
  font-size: 0.72rem;
  color: #64748b;
}
.ras-price {
  font-weight: 700;
  color: #1e293b;
}
.ras-add {
  background: #002868;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.ras-add:hover {
  background: #001a44;
}
.ras-add.added {
  background: #16a34a;
  pointer-events: none;
}

@media (max-width: 768px) {
  .ras-finder-table {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}
