/* ==========================================================================
   WIDGET PENCARIAN — pencarian-widget.css
   CSS khusus widget pencarian informasi
   ========================================================================== */

.pnbyw-search-wrap { width: 100%; }

.pnbyw-search-field {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e4e8;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
  transition: border-color .2s, box-shadow .2s;
}

.pnbyw-search-field:focus-within {
  border-color: #9a2109;
  box-shadow: 0 0 0 3px rgba(154,33,9,.08);
  background: #fff;
}

.pnbyw-search-icon {
  flex-shrink: 0;
  margin: 0 8px 0 10px;
  color: #9a2109;
  opacity: .7;
}

.pnbyw-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 4px;
  font-size: 12px;
  font-family: inherit;
  color: #1A1D23;
  outline: none;
  min-width: 0;
}

.pnbyw-search-input::placeholder { color: #9ca3af; }

.pnbyw-search-btn {
  flex-shrink: 0;
  padding: 9px 14px;
  background: #9a2109;
  color: #fff;
  border: none;
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.pnbyw-search-btn:hover { background: #741807; }
